<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>title</title>
<!-- link 요소를 통해 HTML-CSS 연결 을 할 수 있다 -->
<link rel="stylesheet" href="./index.css">
</head>
<body>
<h1 class="title">Hello World</h1>
</body>
</html>
- link 요소를 통해 HTML-CSS 연결을 할 수 있다.
- rel : 현재 문서와 연결한 아이템의 관계가 어떻게 되는지 설명(주로 stylesheet)
- href: 연결된 아이템의 외부 리소스의 경로
- Reference : MDN 한국 link 요소 문서, MDN US link 요소 문서